home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Ham Radio 2000 #1
/
Ham Radio 2000.iso
/
ham2000
/
antenna
/
yagiu112
/
teststop.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-08-11
|
221 b
|
16 lines
#include <stdio.h>
#include "yagi.h"
extern int errno;
void test_for_stop_file(void)
{
if ( fopen("stop","r") !=NULL )
{
fprintf(stderr,"Remove the file \"stop\" first\n");
exit(1);
}
else
errno=0;
}